home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 34 / CD Expert nº 34.iso / Kyodai Mahjonng / _SETUP.1 / kyodai3dx.exe / 0 / RCDATA / TFRMOPENLIB / TFRMOPENLIB.txt
Text File  |  1997-12-01  |  3KB  |  171 lines

  1. object frmOpenLib: TfrmOpenLib
  2.   Left = 227
  3.   Top = 135
  4.   BorderStyle = bsDialog
  5.   Caption = 'Image Library'
  6.   ClientHeight = 239
  7.   ClientWidth = 303
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnShow = FormShow
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Bevel1: TBevel
  17.     Left = 12
  18.     Top = 8
  19.     Width = 287
  20.     Height = 197
  21.     Shape = bsFrame
  22.   end
  23.   object Bevel2: TBevel
  24.     Left = 182
  25.     Top = 98
  26.     Width = 105
  27.     Height = 74
  28.   end
  29.   object btnOK: TButton
  30.     Left = 145
  31.     Top = 210
  32.     Width = 75
  33.     Height = 25
  34.     Caption = 'OK'
  35.     ModalResult = 1
  36.     TabOrder = 0
  37.   end
  38.   object btnCancel: TButton
  39.     Left = 225
  40.     Top = 210
  41.     Width = 75
  42.     Height = 25
  43.     Cancel = True
  44.     Caption = 'Cancel'
  45.     Default = True
  46.     ModalResult = 2
  47.     TabOrder = 1
  48.   end
  49.   object Panel1: TPanel
  50.     Left = 18
  51.     Top = 16
  52.     Width = 160
  53.     Height = 160
  54.     BevelOuter = bvLowered
  55.     BevelWidth = 2
  56.     TabOrder = 2
  57.     object PaintBox1: TPaintBox
  58.       Left = 2
  59.       Top = 2
  60.       Width = 156
  61.       Height = 156
  62.       Align = alClient
  63.       OnPaint = PaintBox1Paint
  64.     end
  65.   end
  66.   object btnLoad: TButton
  67.     Left = 182
  68.     Top = 16
  69.     Width = 104
  70.     Height = 25
  71.     Caption = '&Open Library...'
  72.     TabOrder = 3
  73.     OnClick = btnLoadClick
  74.   end
  75.   object ScrollBar1: TScrollBar
  76.     Left = 18
  77.     Top = 180
  78.     Width = 160
  79.     Height = 16
  80.     TabOrder = 4
  81.     OnChange = ScrollBar1Change
  82.   end
  83.   object Panel2: TPanel
  84.     Left = 182
  85.     Top = 179
  86.     Width = 105
  87.     Height = 19
  88.     BevelOuter = bvLowered
  89.     TabOrder = 5
  90.   end
  91.   object IndexPanel: TPanel
  92.     Left = 183
  93.     Top = 99
  94.     Width = 103
  95.     Height = 18
  96.     Caption = 'Index: 0'
  97.     TabOrder = 6
  98.   end
  99.   object NamePanel: TPanel
  100.     Left = 183
  101.     Top = 117
  102.     Width = 103
  103.     Height = 18
  104.     Caption = 'Name: <None>'
  105.     TabOrder = 7
  106.   end
  107.   object WidthPanel: TPanel
  108.     Left = 183
  109.     Top = 135
  110.     Width = 103
  111.     Height = 18
  112.     Caption = 'Width: 0'
  113.     TabOrder = 8
  114.   end
  115.   object HeightPanel: TPanel
  116.     Left = 183
  117.     Top = 153
  118.     Width = 103
  119.     Height = 18
  120.     Caption = 'Height: 0'
  121.     TabOrder = 9
  122.   end
  123.   object btnSaveLib: TButton
  124.     Left = 182
  125.     Top = 66
  126.     Width = 104
  127.     Height = 25
  128.     Caption = '&Save &Library...'
  129.     Enabled = False
  130.     TabOrder = 10
  131.     OnClick = btnSaveLibClick
  132.   end
  133.   object btnSaveBmp: TButton
  134.     Left = 182
  135.     Top = 41
  136.     Width = 104
  137.     Height = 25
  138.     Caption = 'Save &Bitmap...'
  139.     Enabled = False
  140.     TabOrder = 11
  141.     OnClick = btnSaveBmpClick
  142.   end
  143.   object OpenDialog1: TOpenDialog
  144.     DefaultExt = 'IML'
  145.     FileEditStyle = fsEdit
  146.     Filter = 'Image Library Files (*.IML)|*.IML|All Files (*.*)|*.*'
  147.     Options = [ofPathMustExist, ofFileMustExist]
  148.     Title = 'Open Image Library'
  149.     Left = 14
  150.     Top = 209
  151.   end
  152.   object SaveDialog1: TSaveDialog
  153.     DefaultExt = 'BMP'
  154.     FileEditStyle = fsEdit
  155.     Filter = 'Bitmap Files (*.BMP)|*.BMP|All Files (*.*)|*.*'
  156.     Options = [ofOverwritePrompt]
  157.     Title = 'Save Bitmap'
  158.     Left = 44
  159.     Top = 209
  160.   end
  161.   object SaveDialog2: TSaveDialog
  162.     DefaultExt = 'IML'
  163.     FileEditStyle = fsEdit
  164.     Filter = 'Image Library Files (*.IML)|*.IML|All Files (*.*)|*.*'
  165.     Options = [ofOverwritePrompt]
  166.     Title = 'Save Image Library'
  167.     Left = 74
  168.     Top = 209
  169.   end
  170. end
  171.